-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V2 Wizard - Foundations #1531
V2 Wizard - Foundations #1531
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1531 +/- ##
=======================================
Coverage 77.69% 77.69%
=======================================
Files 69 69
Lines 2035 2035
Branches 560 560
=======================================
Hits 1581 1581
Misses 413 413
Partials 41 41 Continue to review full report in Codecov by Sentry.
|
bc4b52d
to
a933812
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good 👍 I like the uncommenting/reenabling tests strategy!
One question - do we want to keep all the styling in CreateImageWizard.scss
from the get go or would it be better to add it when it's really needed?
To make code reviews easier, these files are being removed for now. They will be added back over time in a way that results in clearer diffs.
The tests have been converted from .js to .tsx and all lines have been commented out. As steps are added to the wizard, the relevant lines will be uncommented. The V2 wizard can be considered finish when all commented lines have been removed. Proceeding this way (as opposed to starting with an empty test file and adding tests back) will help us ensure we do not accidently 'drop' a test.
The V2 wizard's state will be managed using RTK. Adding a slice for the wizard lays the groundwork.
Adds the scaffolding for the V2 wizard, only empty Image output and Review steps present at this time.
Uncomment all tests that should be passing up to this point in the V2 wizard development.
a933812
to
8a6fc07
Compare
/retest |
I'd love to get rid of as much scss as possible, but I don't want to get blocked on it. But we can do a follow-up PR, could be a good one for @mgold1234 to look at. |
The commits in this PR set the foundation for using RTK to manage the state of the V2 wizard.